x11: Implement gdk_drag_context_set_hotspot
authorMatthias Clasen <mclasen@redhat.com>
Tue, 8 Dec 2015 02:52:51 +0000 (21:52 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Tue, 8 Dec 2015 02:52:51 +0000 (21:52 -0500)
This makes the drag behavior under X11 match what we had previously.

gdk/x11/gdkdnd-x11.c

index 4c818301d30bcb4b9048b18e4a016392022d9bf1..220fb0e10d73f0a97eee8f4d8d48fbe69b925a3d 100644 (file)
@@ -87,6 +87,9 @@ struct _GdkX11DragContext
 
   GdkWindow *drag_window;
 
+  gint hot_x;
+  gint hot_y;
+
   Window dest_xid;             /* The last window we looked up */
   Window drop_xid;             /* The (non-proxied) window that is receiving drops */
   guint xdnd_targets_set  : 1; /* Whether we've already set XdndTypeList */
@@ -184,6 +187,9 @@ static void        gdk_x11_drag_context_drop_finish (GdkDragContext  *context,
                                                      guint32          time_);
 static gboolean    gdk_x11_drag_context_drop_status (GdkDragContext  *context);
 static GdkAtom     gdk_x11_drag_context_get_selection (GdkDragContext  *context);
+static void        gdk_x11_drag_context_set_hotspot (GdkDragContext  *context,
+                                                     gint             hot_x,
+                                                     gint             hot_y);
 
 static GdkWindow *
 gdk_x11_drag_context_get_drag_window (GdkDragContext *context)
@@ -209,6 +215,7 @@ gdk_x11_drag_context_class_init (GdkX11DragContextClass *klass)
   context_class->drop_status = gdk_x11_drag_context_drop_status;
   context_class->get_selection = gdk_x11_drag_context_get_selection;
   context_class->get_drag_window = gdk_x11_drag_context_get_drag_window;
+  context_class->set_hotspot = gdk_x11_drag_context_set_hotspot;
 }
 
 static void
@@ -2121,7 +2128,9 @@ gdk_x11_drag_context_drag_motion (GdkDragContext *context,
 
   if (context_x11->drag_window)
     {
-      gdk_window_move (context_x11->drag_window, x_root, y_root);
+      gdk_window_move (context_x11->drag_window,
+                       x_root - context_x11->hot_x,
+                       y_root - context_x11->hot_y);
       gdk_window_raise (context_x11->drag_window);
     }
 
@@ -2458,3 +2467,14 @@ gdk_x11_drag_context_drop_status (GdkDragContext *context)
 {
   return ! GDK_X11_DRAG_CONTEXT (context)->drop_failed;
 }
+
+static void
+gdk_x11_drag_context_set_hotspot (GdkDragContext *context,
+                                  gint            hot_x,
+                                  gint            hot_y)
+{
+  GdkX11DragContext *x11_context = GDK_X11_DRAG_CONTEXT (context);
+
+  x11_context->hot_x = hot_x;
+  x11_context->hot_y = hot_y;
+}